home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 201 / DPCS1104.ISO / Full / QuickBooks / QBTutor / Lesson2.dcr / 00120_end-list button Cancel click.ls < prev    next >
Encoding:
Text File  |  2001-11-19  |  234 b   |  21 lines

  1. property buttonReady
  2.  
  3. on mouseEnter me
  4.   buttonReady = 0
  5. end
  6.  
  7. on mouseLeave me
  8.   buttonReady = 0
  9. end
  10.  
  11. on mouseDown me
  12.   buttonReady = 1
  13. end
  14.  
  15. on mouseUp me
  16.   if buttonReady > 0 then
  17.     go("Add to List")
  18.   end if
  19.   buttonReady = 0
  20. end
  21.